home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 4490 / 4490.xpi / chrome / wmn.jar / content / pref-script.js < prev    next >
Text File  |  2010-01-06  |  4KB  |  96 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is WebMail Notifier.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Byungwook Kang.
  18.  * Portions created by the Initial Developer are Copyright (C) 2007
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. const Ci=Components.interfaces;
  38. const dout=Components.utils.reportError;
  39.  
  40. var script={
  41.   onLoad:function(){
  42.     this.wmn = Components.classes["@mozilla.org/WebMailNotifier;1"]
  43.                 .getService(Ci.nsIWebMailNotifier);
  44.     this.main=window.arguments[0];
  45.     this.list=this.wmn.getScriptList({});
  46.     this.list.sort();
  47.     for each(var o in this.list)this.addItem(o,this.wmn.getScriptVal(o,"ver"));
  48.   },
  49.   onAdd:function(){
  50.     var fp = Components.classes["@mozilla.org/filepicker;1"]
  51.                    .createInstance(Ci.nsIFilePicker);
  52.     fp.init(window, "Open",Ci.nsIFilePicker.modeOpen);
  53.     fp.appendFilter ("Javascript","*.js");
  54.     fp.appendFilters(Ci.nsIFilePicker.filterAll);
  55.  
  56.     var rv = fp.show();
  57.     if (rv == Ci.nsIFilePicker.returnOK)
  58.     {
  59.       var file=fp.file;
  60.       var fname = file.leafName;
  61.       var fnd=fname.match(/(.+)(\.\S+?)$/);
  62.       if(fnd)fname=fnd[1];
  63.       var str=this.wmn.loadFile0(file);
  64.       var inList=this.main.addScript(fname,str);
  65.       var ver=this.wmn.getScriptVal(fname,"ver");
  66.       if(!inList){
  67.         this.list.push(fname);
  68.         this.addItem(fname,ver);
  69.       }else{
  70.         var em=document.getElementById("id"+fname);
  71.         em.setAttribute("label",fname+(ver?"("+ver+")":""));
  72.       }
  73.     }
  74.   },
  75.   onDelete:function(){
  76.     var obj=document.getElementById("wmn-scripts");
  77.     var index=obj.selectedIndex;
  78.     if(index<0)return;
  79.     var o=this.list[index];
  80.     this.list.splice(index,1);
  81.     obj.removeItemAt(index);
  82.     this.wmn.deleteFile("wmn/"+o+".js");
  83.     if(o.indexOf("lib-")!=0){
  84.       this.wmn.removeHost(o);
  85.       this.main.removeHost(o);
  86.     }
  87.   },
  88.   addItem:function(name,ver){
  89.     var em = document.createElement("listitem");
  90.       var ch = document.createElement("listcell");
  91.       ch.setAttribute("label",name+(ver?"("+ver+")":""));
  92.       ch.id="id"+name;
  93.       em.appendChild(ch);
  94.     document.getElementById("wmn-scripts").appendChild(em);
  95.   }
  96. }